home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode New for 1.6 / ViewerCallbackSample / Headers / Viewer_Window.h < prev   
Encoding:
C/C++ Source or Header  |  1999-05-18  |  496 b   |  37 lines  |  [TEXT/CWIE]

  1. /*  
  2.  *    Viewer_Window.h
  3.  *
  4.  *    QuickDraw 3D 1.6 Sample
  5.  *    Robert Dierkes
  6.  *
  7.  *     12/22/98    RDD        Created.
  8.  */
  9.  
  10. #ifndef _HViewer_Window
  11. #define _HViewer_Window
  12.  
  13.  
  14. #if defined(OS_MACINTOSH) && OS_MACINTOSH
  15. #include <MacWindows.h>
  16. #endif
  17.  
  18.  
  19. #define    kMaxWindowCount        6
  20. extern WindowPtr    gWindows[];
  21.  
  22.  
  23. TQ3Status Window_Initialize(
  24.     void);
  25.  
  26. TQ3Status Window_Exit(
  27.     void);
  28.  
  29. TQ3ViewerObject Window_GetViewer(
  30.     WindowPtr    pWindow);
  31.  
  32. OSErr Window_CloseViewer(
  33.     WindowPtr        *hWindow);
  34.  
  35.  
  36. #endif /* _HViewer_Window */
  37.